golang.org/x/net/http2.clientStream.bufPipe (field)

10 uses

	golang.org/x/net/http2 (current package)
		transport.go#L448: 	bufPipe       pipe // buffered pipe with the flow-controlled response payload
		transport.go#L1726: 		cs.bufPipe.CloseWithError(err) // no-op if already closed
		transport.go#L1731: 		cs.bufPipe.CloseWithError(errRequestCanceled)
		transport.go#L2505: 	cs.bufPipe.setBuffer(&dataBuffer{expected: res.ContentLength})
		transport.go#L2560: 	n, err = b.cs.bufPipe.Read(p)
		transport.go#L2611: 	cs.bufPipe.BreakWithError(errClosedResponseBody)
		transport.go#L2614: 	unread := cs.bufPipe.Len()
		transport.go#L2722: 			if _, err = cs.bufPipe.Write(data); err != nil {
		transport.go#L2772: 		cs.bufPipe.closeWithErrorAndCode(io.EOF, cs.copyTrailers)
		transport.go#L2976: 	cs.bufPipe.CloseWithError(serr)